home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / mus / edit / AlgoRhythms.lha / AlgoRhythms / Source / files.h < prev    next >
C/C++ Source or Header  |  1992-10-30  |  551b  |  16 lines

  1. #ifndef FILES_LOADED
  2. #define FILES_LOADED 1
  3. /* Files.h */
  4. #include "AlgoRhythms.h"
  5.  
  6. extern int save_file(char *file_name, const struct timeval *total_duration,
  7.     const int *scale_len, const int *scale, const int *voices,
  8.     const int *tempo, const FORM_TYPE *form, const NOTE_EVENT_TYPE *events,
  9.     const NOTE_LEN_TYPE *note_len);
  10.     
  11. extern int read_file(char *file_name, struct timeval *total_duration,  
  12.     int *ScaleLength, int *scale, int *voices, int *tempo,
  13.     FORM_TYPE *form, NOTE_EVENT_TYPE *events, NOTE_LEN_TYPE *note_len);
  14.  
  15. #endif
  16.